ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.MarkupLayers Namespace / AjaxDictionary<TValue> Class / Item Property




In This Topic
    Item Property (AjaxDictionary<TValue>)
    In This Topic
    Syntax
    'Declaration
     
    Public Default Property Item( _
       ByVal key As String _
    ) As TValue
    'Usage
     
    Dim instance As AjaxDictionary(Of TValue)
    Dim key As String
    Dim value As TValue
     
    instance.Item(key) = value
     
    value = instance.Item(key)
    public TValue this[ 
       string key
    ]; {get; set;}
    public: __property TValue* get_Item   string* key
    ;
    public: __property void set_Item   string* key,
       TValue* value
    ;
    public:
    property TValue^ default [String^] {
       TValue^ get(String^ key);
       void set (String^ keyTValue^ value);
    }

    Parameters

    key
    See Also